home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / TASM V5 / DLLWIN.PAK / MAKEFILE < prev   
Encoding:
Text File  |  1996-02-21  |  623 b   |  29 lines

  1. # Make file for Turbo Assembler DLLWIN sample project.
  2. #   Copyright (c) 1988, 1993 by Borland International, Inc.
  3.  
  4. #       make -B                 Will build DLLWIN.exe
  5. #       make -B -DDEBUG         Will build the debug version of DLLWIN.exe
  6.  
  7. !if $d(DEBUG)
  8. TASMDEBUG=/zi
  9. LINKDEBUG=/v /s
  10. !else
  11. TASMDEBUG=
  12. LINKDEBUG=
  13. !endif
  14.  
  15. !if $d(MAKEDIR)
  16. THEINCLUDE=-I$(MAKEDIR)\..\include
  17. !else
  18. THEINCLUDE=
  19. !endif
  20.  
  21. TASM_OPTIONS = $(TASMDEBUG) $(THEINCLUDE)
  22.  
  23. dllwin.exe: dllwin.obj dllwin.def
  24.   TLINK /Twd $(LINKDEBUG) dllwin, dllwin, dllwin,,dllwin
  25.  
  26. dllwin.obj: dllwin.asm
  27.   TASM $(TASM_OPTIONS) dllwin,,
  28.  
  29.